Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.05 KB

[RTL8722CSM] [RTL8722DM] WiFi - WiFi Connect.rst

File metadata and controls

33 lines (23 loc) · 1.05 KB

[RTL8722CSM] [RTL8722DM] WiFi - WiFi Connect

Materials

  • AmebaD[AMB21 / AMB22] x 1

Steps

Ameba can connect to WiFi access point with open security or WPA2 security type, which is the most common security type used in household wireless routers.

Here we are going to connect to a WiFi access point using code below, copy and paste the following code line by line into REPL to see their effects.

from wireless import WLAN
wifi = WLAN(mode = WLAN.STA)
wifi.connect(ssid = "YourWiFiName", pswd = "YourWiFiPassword")